home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / REGEXPR.ARJ / REGEXPR.INF < prev   
Text File  |  1992-01-03  |  1KB  |  39 lines

  1. Submitted-by: ylo@ngs.fi (Tatu Ylonen)
  2. Posting-number: Volume 27, Issue 23
  3. Archive-name: regexpr/part01
  4. Environment: UNIX, MSDOS
  5.  
  6. Regexpr is a regular expression package.  It is free (meaning that you
  7. may do anything you want with it); the original motivation for writing
  8. it was not being able to use the GNU library in a commercial
  9. application.
  10.  
  11. Some of the features include:
  12.   - fully compatible with gnu regex library (I run emacs with this
  13.     library for several weeks as a test)
  14.   - can handle arbitrary data, including binary characters
  15.   - can handle split data
  16.   - compiles and runs also on 16 bit machines (eg. MSDOS)
  17.   - does not use alloca
  18.   - fairly easy to extend and modify (easier than the gnu version anyway)
  19.   - speed comparable to that of the GNU library (searches seem a bit
  20.     faster, matches about the same and compiling a bit slower than in
  21.     the gnu library)
  22.   - there are some extensions (enabled if RE_ANSI_HEX is set in syntax):
  23.       \vnn for accessing registers > 9 (useful if RE_NREGS > 10)
  24.       \xhh specifies character in hex
  25.       \a   ascii 7
  26.       \b   ascii 8
  27.       \f   ascii 12
  28.       \n   ascii 10
  29.       \r   ascii 13
  30.       \t   ascii 9
  31.       \v   ascii 11
  32.  
  33. I have not written any documentation; see the header file and
  34. documentation GNU Regex library in GNU Emacs distribution.
  35.  
  36. Send comments, bug fixes and suggestions to Tatu Ylonen
  37. <ylo@cs.hut.fi>.
  38.  
  39.